home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / rc-1.000 / rc-1 / rc-1.5-linux / b_false.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-22  |  141 b   |  9 lines

  1. #include "addon.h"
  2. typedef enum bool { FALSE, TRUE } bool;
  3. extern void set(bool);
  4.  
  5. void b_false(char** argv) {
  6.     set(FALSE);
  7.     return;
  8. }
  9.